home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / s_to_z / tu / indxproj.dpr < prev    next >
Encoding:
Text File  |  1996-09-15  |  200 b   |  13 lines

  1. program Indxproj;
  2.  
  3. uses
  4.   Forms,
  5.   Indxmain in 'INDXMAIN.PAS' {FormIndxProjMain};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TFormIndxProjMain, FormIndxProjMain);
  11.   Application.Run;
  12. end.
  13.